.instructor-card-holder .team-item {
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
}

@media only screen and (min-width: 600px) {
    .instructor-card-holder .team-item {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        }
    }

@media only screen and (min-width: 768px) {
    .instructor-card-holder .team-item {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.33%;
                flex: 0 0 33.33%;
    }
}

@media only screen and (min-width: 1200px) {
    .instructor-card-holder .team-item {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 21%;
                flex: 0 0 21%;
    }
}

.flex-row[class*="item-col-"]:not(.no-gutters) > * {
    padding: 30px 15px 0;
}

.instructor-card-holder.flex-row[class*="item-col-"] > * {
    padding-top: 50px;
}

.instructor-card-holder.flex-row {
    justify-content: space-evenly;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.instructor-card-item .instructor-card-photo {
    position: relative;
    display: block;
    cursor: pointer;
    width: 250px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 16px;
}

.instructor-card-holder .instructor-card-item .instructor-card-name {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    margin-top: 0;
    width: 100%
}

.instructor-card-holder .instructor-card-item .instructor-card-name:focus {
    outline: none;
}

.modal-card-wrapper {
    background-color: #e9e9e4;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.instructor-card-info {
    text-align: center;
}

.instructor-card-item {
    flex: 0 0 25%;
}

.eagle-year {
    font-weight: 600;
}

.modal-photo {
    height: 300px;
    background-size: cover;
}

.modal-body .row {
    margin-left: 0;
    margin-right: 0;
}

.instructor-card-photo:before {
    content: "";
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    position: absolute;
}

.instructor-card-photo:hover:before {
    content: "";
    background: rgba(0,0,0,0.5);
    transition: all .5s ease;
    height: 100%;
    width: 100%;
}